crypto/tls.keyShare.data (field)

11 uses

	crypto/tls (current package)
		common.go#L128: 	data  []byte
		handshake_client.go#L139: 		hello.keyShares = []keyShare{{group: curveID, data: params.PublicKey()}}
		handshake_client_tls13.go#L235: 		hs.hello.keyShares = []keyShare{{group: curveID, data: params.PublicKey()}}
		handshake_client_tls13.go#L347: 	sharedKey := hs.ecdheParams.SharedKey(hs.serverHello.serverShare.data)
		handshake_messages.go#L249: 								b.AddBytes(ks.data)
		handshake_messages.go#L534: 					!readUint16LengthPrefixed(&clientShares, &ks.data) ||
		handshake_messages.go#L535: 					len(ks.data) == 0 {
		handshake_messages.go#L685: 						b.AddBytes(m.serverShare.data)
		handshake_messages.go#L813: 					!readUint16LengthPrefixed(&extData, &m.serverShare.data) {
		handshake_server_tls13.go#L213: 	hs.hello.serverShare = keyShare{group: selectedGroup, data: params.PublicKey()}
		handshake_server_tls13.go#L214: 	hs.sharedKey = params.SharedKey(clientKeyShare.data)